crypto/tls.certificateMsg.certificates (field)

13 uses

	crypto/tls (current package)
		handshake_client.go#L663: 	if !ok || len(certMsg.certificates) == 0 {
		handshake_client.go#L698: 		if err := c.verifyServerCertificate(certMsg.certificates); err != nil {
		handshake_client.go#L708: 		if !bytes.Equal(c.peerCertificates[0].Raw, certMsg.certificates[0]) {
		handshake_client.go#L762: 		certMsg.certificates = chainToSend.Certificate
		handshake_messages.go#L1374: 	certificates [][]byte
		handshake_messages.go#L1379: 	for _, slice := range m.certificates {
		handshake_messages.go#L1383: 	length := 3 + 3*len(m.certificates) + i
		handshake_messages.go#L1396: 	for _, slice := range m.certificates {
		handshake_messages.go#L1432: 	m.certificates = make([][]byte, numCerts)
		handshake_messages.go#L1436: 		m.certificates[i] = d[3 : 3+certLen]
		handshake_server.go#L599: 	certMsg.certificates = hs.cert.Certificate
		handshake_server.go#L679: 			Certificate: certMsg.certificates,
		handshake_server.go#L683: 		if len(certMsg.certificates) != 0 {